home *** CD-ROM | disk | FTP | other *** search
/ Champak 52 / Volume 52 - JOGO DISK .iso / Games / scoobybigair.swf / scripts / frame_1 / DoAction_2.as next >
Text File  |  2007-10-01  |  426b  |  28 lines

  1. function getScore()
  2. {
  3.    return gameMC.gScore;
  4. }
  5. function showDebugWindow()
  6. {
  7.    gameMC.debug_clip.showDebug();
  8. }
  9. function hideDebugWindow()
  10. {
  11.    gameMC.debug_clip.hideDebug();
  12. }
  13. function pause()
  14. {
  15.    gameMC.gPaused = true;
  16. }
  17. function unPause()
  18. {
  19.    gameMC.gPaused = false;
  20. }
  21. function restart()
  22. {
  23.    containerMC.resetContainer();
  24.    containerMC.init();
  25.    gameMC.gScore = 0;
  26.    gameMC.gLevel = 1;
  27. }
  28.